26c8da489072c7cca45aff164c5bc0aab6b83267,app/src/main/java-gen/com/team2052/frckrawler/db/PitDataDao.java,PitDataDao,readEntity,#Cursor#PitData#number#,147
Before Change
entity.setMetric_id(cursor.getLong(offset + 2));
entity.setEvent_id(cursor.getLong(offset + 3));
entity.setUser_id(cursor.isNull(offset + 4) ? null : cursor.getLong(offset + 4));
entity.setData(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5));
entity.setLast_updated(cursor.isNull(offset + 6) ? null : new java.util.Date(cursor.getLong(offset + 6)));
}
After Change
entity.setMetric_id(cursor.getLong(offset + 2));
entity.setEvent_id(cursor.getLong(offset + 3));
entity.setData(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4));
entity.setLast_updated(cursor.isNull(offset + 5) ? null : new java.util.Date(cursor.getLong(offset + 5)));
}
@Override